00001 00009 #ifndef _DLL_H_ 00010 #define _DLL_H_ 00011 00012 #if BUILDING_DLL 00013 # define DLLIMPORT __declspec (dllexport) 00014 #else /* Not BUILDING_DLL */ 00015 # define DLLIMPORT __declspec (dllimport) 00016 #endif /* Not BUILDING_DLL */ 00017 00018 DLLIMPORT void ssolution(int[][],int,int,int*,char[]); 00019 00020 #endif /* _DLL_H_ */